


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  font-size: var(--fs-base);     
  line-height: var(--lh-normal); 
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}


.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-md);        
  transition: var(--transition);
  gap: 8px;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(41, 152, 255, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 152, 255, 0.6);
}

.btn-outline {
  background: white;
  border: 1px solid #e2e8f0;
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg);
}


.site-banner {
  background: linear-gradient(90deg, var(--text), var(--accent-dark));
  color: white;
  font-size: var(--fs-base);
  padding: 10px 0;
}

.site-banner__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  text-align: center;
}

.site-banner__text span {
  font-weight: var(--fw-bold);
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.site-banner__btn {
  background: white;
  color: var(--text);
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: var(--fw-bold);
  font-size: var(--fs-tiny);  
}

.site-banner__close {
  background: none;
  border: none;
  color: white;
  opacity: 0.7;
  font-size: 1rem;
}


.site-header {
  height: var(--nav-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-header__top {
  height: 0;
  overflow: visible;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
}

.brand__logo {
  height: 32px;
}

.nav-main {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-main > li {
  position: relative;
}

.nav-main a {
  font-size: var(--fs-md);    
  color: var(--muted);
  font-weight: var(--fw-medium);
}

.nav-main a:hover {
  color: var(--accent);
}


.dropdown-row,
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--card);
  border: 1px solid #f1f5f9;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 50;
}

.dropdown-row {
  display: flex;
  gap: 40px;
  min-width: 460px;
}

.dropdown:hover .dropdown-row,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.drop-title {
  color: var(--muted);
  font-size: var(--fs-tiny);   
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  font-weight: var(--fw-bold); 
}

.dropdown-menu li a,
.dropdown-row li a {
  display: block;
  padding: 6px 0;
  color: var(--text);
}

.dropdown-menu li a:hover,
.dropdown-row li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}


.dp-main {
  background: var(--bg);
}


.dh-hero {
  padding: 96px 0 80px;
  position: relative;
  background: radial-gradient(circle at top right, var(--bg-strong) 0%, transparent 45%);
}

.dh-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.dh-content {
  position: relative;
  z-index: 1;
}

.dh-eyebrow {
  color: var(--accent);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--fs-tiny);  
  margin-bottom: 18px;
  background: var(--accent-soft);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
}

.dh-title {
  font-size: var(--fs-xxxl);     
  line-height: var(--lh-hero-title);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.dh-gradient {
  color: var(--accent);
}

.dh-subtitle {
  color: var(--muted);
  font-size: var(--fs-lg);
  margin-bottom: 26px;
  max-width: 540px;
}

.dh-points {
  margin-bottom: 26px;
}

.dh-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: var(--fw-medium);
  font-size: var(--fs-md);      
}

.dh-points li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  background: var(--success);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
}

.dh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 16px;
}

.dh-note {
  font-size: var(--fs-sm);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dh-note::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
}


.dh-visual {
  position: relative;
}

.dh-map-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 20px 20px 18px;
  position: relative;
  box-shadow: var(--shadow-soft);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.dh-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: var(--fs-xs);
  color: var(--muted);
  background: white;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
}

.dh-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.22);
}


.dh-map {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0edff, #f8fafc);
  margin-bottom: 16px;
}

.dh-map-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
}

.dh-map-route {
  position: absolute;
  left: 12%;
  right: 14%;
  top: 26%;
  bottom: 24%;
  border-radius: 999px;
  border: 2px dashed rgba(37, 99, 235, 0.7);
}

.dh-map-truck {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.65);
  animation: truckMove 6s ease-in-out infinite;
}

@keyframes truckMove {
  0% { transform: translate(20%, 70%); }
  30% { transform: translate(45%, 30%); }
  60% { transform: translate(70%, 60%); }
  100% { transform: translate(20%, 70%); }
}


.dh-alert {
  background: white;
  border-left: 4px solid var(--muted);
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: var(--fs-sm);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.dh-alert strong {
  color: var(--text);
  font-weight: var(--fw-bold);
}

.dh-alert.active {
  opacity: 1;
  transform: translateX(0);
}

.dh-a1 { border-color: var(--accent); }
.dh-a2 { border-color: var(--warning); }
.dh-a3 { border-color: var(--success); }

.dh-pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  display: inline-block;
}

.dh-pill.blue { background: var(--bg-strong); color: var(--accent-dark); }
.dh-pill.yellow { background: #fffbeb; color: #b45309; }
.dh-pill.green { background: #ecfdf5; color: var(--success); }


.glow-card { position: relative; }
.glow-card:hover::before { opacity: 1; }


.section {
  padding: 96px 0;
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section__eyebrow {
  color: var(--accent);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: var(--fs-sm);    
  letter-spacing: 0.12em;
}

.section__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}

.section__subtitle {
  color: var(--muted);
  font-size: var(--fs-lg);
}


.dp-how {
  background: transparent;
}

.dp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.dp-step-card {
  background: var(--card);
  padding: 28px 26px 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.03);
  border: 1px solid transparent;
  transition: var(--transition);
}

.dp-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--bg-strong);
}

.dp-step-num {
  width: 42px;
  height: 42px;
  background: var(--bg-strong);
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.dp-step-card h3 {
  font-size: var(--fs-base);
  margin-bottom: 10px;
  color: var(--text);
}

.dp-step-card p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-bottom: 16px;
  line-height: 1.7;
}

.dp-bullets li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 7px;
  color: var(--text);
  font-size: var(--fs-sm);
}

.dp-bullets li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}


.dp-metrics {
  background: #ffffff;
  border-top: 1px solid #e5edf8;
  border-bottom: 1px solid #e5edf8;
}

.dp-metrics-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.dp-metric-list {
  color: var(--muted);
  margin-top: 26px;
  font-size: 1rem;
}

.dp-metric-list li {
  margin-bottom: 16px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.dp-metric-list strong {
  color: var(--text);
  font-weight: var(--fw-bold);
}

.dp-metrics-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: inset 0 0 0 1px #ffffff, var(--shadow-sm);
}

.dp-metrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 16px;
}

.dp-metrics-header h3 {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--text);
}

.dp-tab-switch {
  background: white;
  padding: 3px;
  border-radius: 10px;
  display: inline-flex;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08);
}

.dp-tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  padding: 7px 14px;
  font-size: var(--fs-tiny);
  border-radius: 8px;
  font-weight: var(--fw-semibold);
}

.dp-tab-btn--active {
  background: var(--bg-strong);
  color: var(--accent);
}

.dp-metrics-rows {
  margin-top: 6px;
}

.dp-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.dp-metric-row span {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.dp-metric-row strong {
  font-size: 1.15rem;
  color: var(--text);
}

.dp-metric-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.dp-chip--green {
  background: #ecfdf5;
  color: var(--success);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: var(--fw-bold);
  margin-top: 4px;
}

.dp-metrics-graph {
  height: 64px;
  position: relative;
  margin-top: 20px;
  border-left: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.dp-graph-line {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  height: 30px;
  border-top: 2px dashed var(--accent);
  opacity: 0.6;
}

.dp-graph-dot {
  width: 10px;
  height: 10px;
  background: white;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}

.dp-graph-dot--1 { bottom: 10px; left: 10%; }
.dp-graph-dot--2 { bottom: 28px; left: 38%; }
.dp-graph-dot--3 { bottom: 42px; left: 70%; }
.dp-graph-dot--4 { bottom: 36px; left: 94%; }


.dp-value {
  background: transparent;
}

.dp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.dp-value-card {
  text-align: center;
  padding: 26px 22px 26px;
  background: var(--card);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
}

.dp-value-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
  border-color: var(--bg-strong);
}

.dp-value-icon {
  font-size: 1.7rem;
  color: var(--accent);
  margin: 0 auto 16px;
  background: var(--bg-strong);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.dp-value-card h3 {
  font-size: var(--fs-base);
  margin-bottom: 10px;
  color: var(--text);
}

.dp-value-card p {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}



.footer {
  background: var(--text);
  padding: 70px 0 30px;
  color: #cbd5e1;
}

.footer-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-search h3 {
  font-size: 1.4rem;
  color: white;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: white;
  font-weight: var(--fw-bold);
}

.footer-col a {
  color: #94a3b8;
  font-size: var(--fs-md);
  display: block;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  color: #64748b;
  font-size: var(--fs-base);
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social {
  color: white;
  opacity: 0.65;
  font-size: 1.2rem;
}

.social:hover {
  opacity: 1;
  color: var(--accent);
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.alert-seq.active:nth-child(2) { transition-delay: 0.12s; }
.alert-seq.active:nth-child(3) { transition-delay: 0.24s; }



@media (max-width: 992px) {
  .nav-main,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .dh-hero {
    padding: 80px 0 60px;
  }

  .dh-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .dh-visual {
    order: -1;
  }

  .dh-subtitle {
    max-width: 100%;
  }

  .section {
    padding: 80px 0;
  }

  .dp-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dp-metrics-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .dp-metrics-card {
    padding: 24px;
  }

  .dp-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-fixed-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 40px 26px;
    text-align: left;
  }

  .cta-fixed-quote {
    padding-left: 0;
    border-left: none;
    margin-top: 6px;
  }

  .cta-fixed-name {
    padding-left: 0;
  }

  .footer-search {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dh-title {
    font-size: 2.2rem;
  }

  .dh-map-card {
    min-height: 0;
  }

  .dp-steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dp-value-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section__title {
    font-size: 2rem;
  }

  .section {
    padding: 70px 0;
  }

  .cta-fixed-card {
    padding: 32px 22px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    text-align: left;
  }
}

@media (max-width: 540px) {
  .dh-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .cta-fixed-btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}